home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / j_41_st.zoo / install_4.1 < prev    next >
Encoding:
Text File  |  1992-03-17  |  2.5 KB  |  81 lines

  1.  
  2.         Installation and Start-Up Procedure
  3.         for J, Version 4.1, on personal systems
  4.  
  5. 0.  This distribution consists of two compressed tape archive files:
  6.  
  7.      tutorials.zoo        Tutorials.
  8.      j_4.1_XX.zoo        The executable.
  9.  
  10. 1.  These installation steps are suggested:
  11.  
  12.      mkdir ~\j            Create a new directory called "j".
  13.      mv *.zoo ~\j        Move the two '.zoo' files to the new directory.
  14.      cd ~\j            Change to the new directory.
  15.      zoo -e *.zoo        Expand the compressed '.zoo' files.
  16.      rm *.zoo            Remove the '.zoo' files.  Alternatively,
  17.                 move them to some safe place.
  18.      mv j_* j.tos        Rename the executable.
  19.  
  20. 2.  If yours is a one user system, these steps are suggested:
  21.  
  22.      alias j "~\j\j.tos"    Set an alias for j.  You probably want
  23.                 this line in your ".cshrc" or "aliases" file.
  24.      j                To start the program.  (Use CTRL D to end.)
  25.  
  26. With this setup, J will be available to you from any directory.
  27. The J tutorial will be available to you whenever you make "~\j"
  28. your current directory.
  29.  
  30. 3.  When you start J, you should soon see the message
  31.  
  32.    J Version 4.1  Copyright (c) 1990-1992, Iverson Software Inc.
  33.  
  34.    and a 3-space prompt.  At this point, the system is ready to
  35.    interpret J sentences.  To terminate the session, enter  ^D  (Control D) .
  36.  
  37. 4.  A tutorial is available.  Within a J session, enter:
  38.  
  39.      0!:3 < 'tutorial.js'    Make the necessary definitions
  40.      tutorial ''        Start the tutorial
  41.  
  42. 5.   The directory used for the binary file  "j.tos"  may be changed,
  43. depending on the conventions in use at your installation.  Some system
  44. administrators may like  J  itself to be installed as "\bin\j".
  45. The  J  tutorial files may be installed in a different directory,
  46. such as  "\software\j\doc".  If this directory path is used, the
  47. files needed by the tutorial would be named:
  48.  
  49.     \software\j\doc\tutorial.js
  50.     \software\j\doc\tut\tut*.js    (47 of these, numbered 0 to 46)
  51.  
  52. In such a setting, for the file  "tutorial.js"  to run correctly, it must
  53. be modified.  In this file, the line
  54.  
  55.     frames=.<&read ('tut\tut'&,)&(,&'.js')&":&.>i.47
  56.  
  57. may be replaced by
  58.  
  59.     Path =. '\software\j\doc\tut'
  60.     frames=.<&read ((Path,'\tut')&,)&(,&'.js')&":&.>i.47
  61.  
  62. Then users may be instructed to do these steps,
  63.  
  64.     % cp \software\j\doc\tut\tutorial.js .
  65.     % j
  66.  
  67.           0:!3 < 'tutorial.js'
  68.           tutorial ''
  69.  
  70. Or users may be instructed to do these steps:
  71.  
  72.     % j
  73.  
  74.         0:!3 '\software\j\doc\tutorial.js'
  75.         tutorial ''
  76.  
  77. 6.  Some first time users have found it useful to print the 47
  78. tutorial files (about 20 to 30 lines each) and have them at hand
  79. while experimenting with the system.
  80.  
  81.